home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 2
/
Meeting Pearls Vol. II (1995)(GTI - Schatztruhe)[!].iso
/
Pearls
/
text
/
FAQ
/
bonus
/
start_most.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1994-12-27
|
531b
|
23 lines
/* Arexx-Script for Most
loading new text in old window and bring it to front
$VER: start_most.rexx 0.8 (17-Dez-94) ©1994 ninji
*/
parse arg file
options results
if (~exists(file)) then file = strip(file,,'"')
if ((pos(':',file) == 0) & (pos('/',file) == 0)) then do
dir = pragma(d)
if (right(dir,1) ~= ':') then file = dir || '/' || file
else file = dir || file
end
if (~show(ports,'MOST.0')) then address command 'Run Most' file
else do
address MOST.0
'open FILE' file
'tofront'
end